From 45a6c109d959e9ba92e39397a2cb9da8c1cf67af Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 28 Mar 2016 12:25:17 +0100 Subject: [PATCH] packaging: fix bashism in dist-snapshot target On Debian and its derivatives, /bin/sh is a lightweight POSIX shell (currently dash) which does not support the bash {foo,bar} syntax. Signed-off-by: Simon McVittie Closes: #226 Approved by: cgwalters --- packaging/Makefile.dist-packaging | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/Makefile.dist-packaging b/packaging/Makefile.dist-packaging index b55211d6..096aeaba 100644 --- a/packaging/Makefile.dist-packaging +++ b/packaging/Makefile.dist-packaging @@ -22,7 +22,7 @@ dist-snapshot: tar -A -f $${TARFILE_TMP} submodule.tar; \ rm submodule.tar; \ done; \ - mv $(PKG_VER).tar{.tmp,}; \ + mv $(PKG_VER).tar.tmp $(PKG_VER).tar; \ rm -f $(PKG_VER).tar.xz; \ xz $(PKG_VER).tar -- 2.30.2